var internal/strconv.powtab
5 uses
internal/strconv (current package)
atof.go#L309: var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
atof.go#L339: if d.dp >= len(powtab) {
atof.go#L342: n = powtab[d.dp]
atof.go#L349: if -d.dp >= len(powtab) {
atof.go#L352: n = powtab[-d.dp]
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |